home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Source Code / C / Applications / Moscow ML 1.31 / source code / mosml / src / mosmllib / Miscnj93.sig < prev    next >
Encoding:
Text File  |  1996-07-03  |  576 b   |  21 lines  |  [TEXT/R*ch]

  1. (* Miscnj93 -- 1995-02-24 
  2.    Only those functions compatible with the SML/NJ 0.93 initial environment.
  3.  *)
  4.  
  5. (* These functions really belong in General, but can appear there only 
  6.    if defined in the runtime system.  So for now they are here.
  7.  *)
  8.  
  9. val o : ('b -> 'c) * ('a -> 'b) -> 'a -> 'c
  10. val before : ('a * unit) -> 'a
  11.  
  12. val str     : char -> string
  13.  
  14. val @       : 'a list * 'a list -> 'a list
  15. val length  : 'a list -> int 
  16. val map     : ('a -> 'b) -> 'a list -> 'b list
  17. val null    : 'a list -> bool
  18. val rev     : 'a list -> 'a list 
  19.  
  20. val vector  : 'a list -> 'a vector
  21.